home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Best of MacTutor - S…e Code for Volumes 1 to 5
/
The Best of MacTutor - Source Code for Volume 1-5 (Wayzata Technology)(6031)(1990).bin
/
Source Code
/
#26 (Nov 87)
/
Daisy C Print Driver
/
daisy printer sources
/
PDEF5.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-09-13
|
639b
|
26 lines
/*
* Although this printer driver does not do spool printing, I provide
* a duplicate PDEF to pretend to do so. That is just a copy of my PDEF 0,
* and it really does draft printing. This module is so the application can
* call PrPicFile() when it is done. Some applications just don't get the
* hint, and attempt to spool print even when the print record says
* otherwise.
*/
#include "prglobals.h"
pascal void myPrPicFile();
main()
{
asm{
dc.w ILLEGAL
jmp myPrPicFile
}
}
pascal void myPrPicFile(hPrint,pPrPort,pIOBuf,pDevBuf,prStatus)
THPrint hPrint;
TPPrPort pPrPort;
Ptr pIOBuf,pDevBuf;
TPrStatus *prStatus;
{
}